home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 January / macformat46.iso / Demos / PowerFantasm 4.15 / Beginners guide / GUIDE EXAMPLES / EXAMPLE1.S next >
Encoding:
Text File  |  1996-06-21  |  416 b   |  12 lines

  1. *******************************************************************
  2. *example program to add 3 numbers and print the result            *
  3. *******************************************************************
  4. ADD_3_NUMBS:
  5.     BSR    INIT_CURSOR    *part of io_lib.s
  6.     MOVE.L    #10,D0
  7.     ADD.W    #20,D0
  8.     ADD.W    #30,D0
  9.     BSR    PRINTNUM    *part of io_lib.s
  10.     RTS
  11.     INCLUDE    IO_LIB.S
  12. ************************END OF ADD THREE NUMBS********************